home *** CD-ROM | disk | FTP | other *** search
/ SIGGRAPH 2002 Course Notes / SIGGRAPH 2002 - Course Notes - Disc 1.iso / pc / notes / 18 / supplemental_material / SMIL_Ex / ex2 / ex2_region.smil < prev    next >
Encoding:
Text File  |  2002-04-22  |  836 b   |  26 lines

  1. <!--
  2. An image and a caption displayed in their own regions
  3. -->
  4. <!DOCTYPE smil PUBLIC "-//W3C//DTD SMIL 1.0//EN"
  5.     "http://www.w3.org/TR/REC-smil/SMIL10.dtd">
  6. <smil>
  7.   <head>
  8.       <meta name="Author" content="Kathy Barshatzky" />
  9.       <meta name="Copyright" content="javakathy.com" />
  10.       <layout>
  11.          <root-layout width="460" height="400" />
  12.          <region id="photo_region"
  13.             width="384" height="288" top="25" left="38" />
  14.          <region id="caption_region" 
  15.             width="340" height="40" top="350" left="60" />
  16.       </layout>
  17.   </head>
  18.   <body>
  19.       <par>
  20.          <img src="hockeyTeco.jpg" alt="hockey game image" 
  21.         region="photo_region" dur="indefinite" />
  22.          <text src="caption2.txt" alt="Teco Arena, Dec 2000"
  23.         region="caption_region" dur="indefinite" />
  24.       </par>
  25.   </body>
  26. </smil>